home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / ihpfs124.zip / dumbdrv.txt < prev    next >
Text File  |  1997-06-01  |  2KB  |  84 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.                             DumbDrv
  11.                     Dummy DOS Device Driver
  12.              Copyright (C) 1994-1996 Marcus Better
  13.  
  14.                          Version 1.10
  15.                         January 3, 1996
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. What is DumbDrv?
  26. ================
  27.  
  28. DumbDrv is a device driver which creates a null block device - a
  29. device that does absolutely nothing, except for occupying one or more
  30. drive letters.  This can be useful if one wants to reserve a drive
  31. letter at boot time, so that another driver can use that drive letter.
  32. The KillDrv utility may be used to delete a DumbDrv device.
  33.  
  34. Here's an example where DumbDrv is useful: Let's say we have a hard
  35. disk called C:, a CD-ROM drive (accessed by MSCDEX.EXE), and a ramdisk
  36. created by RAMDRIVE.SYS.  We now want the CD-ROM drive to be D: and
  37. the ramdisk E:.  Since RAMDRIVE.SYS is loaded before MSCDEX.EXE, the
  38. ramdisk will automatically become D:, though.  This is where DumbDrv
  39. comes in.  By loading DUMBDRV.SYS just before RAMDRIVE.SYS, we reserve
  40. the drive letter D:, forcing the ramdisk to become E:.  We can then
  41. delete the DumbDrv using the KillDrv utility, and load MSCDEX as D:
  42. instead.
  43.  
  44.  
  45. License
  46. =======
  47.  
  48. DumbDrv is free software, and is distributed under the GNU General
  49. Public License.  Please see the file COPYING for details.
  50.  
  51.  
  52. Installation
  53. ============
  54.  
  55. DumbDrv is installed by entering the line
  56.  
  57.             DEVICE=d:\path\DUMBDRV.SYS
  58.  
  59. in  your  CONFIG.SYS file.  The driver will be loaded  the  next time
  60. you  boot your computer.  DumbDrv will display  a  message saying what
  61. drive letters it occupies.
  62.  
  63. You  may  also specify the number of drive letters you want  to
  64. reserve.  To reserve three drives, use the line
  65.  
  66.             DEVICE=d:\path\DUMBDRV.SYS 3
  67.  
  68. in your CONFIG.SYS.  If you do not specify a number, the default value
  69. is 1.  If you specify a number higher than the number  of available
  70. drive letters, DumbDrv will use all available drives.
  71.  
  72. NOTE:  Drive  letters  are  assigned to  block  device  drivers
  73. sequentially in the order they are loaded in CONFIG.SYS.
  74.  
  75.  
  76. Contacting the author
  77. =====================
  78.  
  79. You are welcome send me any ideas, comments and suggestions for
  80. DumbDrv.  If  you have found any bugs, please let me  know.  My email
  81. address is
  82.  
  83.         Marcus.Better@abc.se
  84.